home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-10-25 | 3.8 KB | 111 lines | [TEXT/MPS ] |
- # Copyright © 1984-1988 by Apple Computer Inc. All rights reserved.
-
- # The user Make file. Customize this file to suit your particular application.
- # Remember, an MAMake file is not needed if you have a single file application
- # or the classic, magic 5 files application.
- #
- # Look at the sample MAMake files as a guide.
- # Open Basic Definitions to see what other Make variables exist.
-
- #---------------------------------------------------------------------------------------------------
- # List here the Application's Name
-
- AppName = Application
- Creator = 'APP1'
-
-
- #---------------------------------------------------------------------------------------------------
- # List the system libraries that your application needs to link with if the set that
- # MABuild dynamically computes is not sufficient (it should be)
-
- #NeededSysLibs =
-
-
- #---------------------------------------------------------------------------------------------------
- # List here the MacApp building blocks that your application uses
- # if you want to be dependent on less than the full set. (the default)
-
- BuildingBlockIntf = ∂
- "{MAPInterfaces}UPrinting.p" ∂
- "{MAPInterfaces}UTEView.p" ∂
- "{MAPInterfaces}UDialog.p" ∂
- "{MAPInterfaces}UGridView.p"
-
-
- #---------------------------------------------------------------------------------------------------
- # List any additional interfaces that your application is dependent on
- # If they change, your ( magic 1 or 5 ) sources recompile
-
- OtherInterfaces = "{SrcApp}UOtherUnit.p"
-
-
- #---------------------------------------------------------------------------------------------------
- # By default the MABuild links the above libraries, the necessary
- # MacApp files, and the files UAppName.p.o and MAppName.p.o.
- # List any additional files that your program links with:
-
- OtherLinkFiles = ∂
- "{ObjApp}UOtherUnit.p.o ∂
- "{ObjApp}Application.a.o" ∂
- "{ObjApp}SortPackage.c.o"
-
- #---------------------------------------------------------------------------------------------------
- # Specify any -sn (segment alias) linker options that you want included.
- # (Or to override MacApp's default mapping (in Basic Definitions))
-
- OtherSegMappings = "-sn mySeg1=NewSeg -sn mySeg2=NewSeg"
-
-
- #---------------------------------------------------------------------------------------------------
- # List Rez files other than AppName.r that need to Rez'ed with the application
-
- OtherRezFiles = "{SrcApp}MyTemplates.r"
-
-
- #---------------------------------------------------------------------------------------------------
- # List separately compiled resource files that the Rez file includes if you want to
- # include more or less than the standard set. Remember to "include" them.
- OtherRsrcFiles = ∂
- "{MAObj}Dialog.rsrc" ∂
- "{MAObj}Printing.rsrc" ∂
- "{ObjApp}MyResources.rsrc"
-
- #---------------------------------------------------------------------------------------------------
- # List the dependencies of the additional files (not covered by the
- # default rules) and special build rules, if any:
-
- "{ObjApp}UOtherUnit.p.o" ƒ ∂
- "{SrcApp}UOtherUnit.inc1.p"
- {MacAppPascalIntf} ∂
- {BuildingBlocksPascalIntf}
-
- "{ObjApp}SortPackage.c.o ƒ ∂
- "{SrcApp}SortPackage.c" ∂
- "{BuildFlags}"
-
- "{ObjApp}MyResources.rsrc ƒ ∂
- "{SrcApp}MyResourcesSpecialTypeInfo.r" ∂
- "{BuildFlags}"
-
-
- #---------------------------------------------------------------------------------------------------
- # List here any other options that you want passed to the appropriate tool.
-
- OtherAsmOptions =
- OtherCOptions =
- OtherCPlusOptions =
- OtherInterfaces =
- OtherLibOptions =
- OtherLinkOptions =
- OtherPascalOptions =
- OtherPostRezOptions =
- OtherRezFiles =
- OtherRezOptions =
-
-
- #---------------------------------------------------------------------------------------------------
- # If you extend the view types template, list here the .r file containing the extension.
-
- OtherViewTypesSrc =
-
-